runtime.typePointers.typ (field)

17 uses

	runtime (current package)
		mbitmap.go#L140: 	typ *_type
		mbitmap.go#L201: 	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcmask), typ: typ}
		mbitmap.go#L223: 	return typePointers{elem: addr, addr: addr, mask: readUintptr(gcmask), typ: typ}
		mbitmap.go#L279: 		if tp.typ == nil {
		mbitmap.go#L284: 		if tp.addr+goarch.PtrSize*ptrBits >= tp.elem+tp.typ.PtrBytes {
		mbitmap.go#L285: 			tp.elem += tp.typ.Size_
		mbitmap.go#L297: 		tp.mask = readUintptr(addb(getGCMask(tp.typ), (tp.addr-tp.elem)/goarch.PtrSize/8))
		mbitmap.go#L318: 	if tp.typ == nil {
		mbitmap.go#L332: 	if n >= tp.typ.Size_ {
		mbitmap.go#L336: 		tp.elem += (tp.addr - tp.elem + n) / tp.typ.Size_ * tp.typ.Size_
		mbitmap.go#L342: 	if tp.addr-tp.elem >= tp.typ.PtrBytes {
		mbitmap.go#L345: 		tp.elem += tp.typ.Size_
		mbitmap.go#L347: 		tp.mask = readUintptr(getGCMask(tp.typ))
		mbitmap.go#L356: 		tp.mask = readUintptr(addb(getGCMask(tp.typ), (tp.addr-tp.elem)/goarch.PtrSize/8))
		mbitmap.go#L960: 	print("runtime: tp.elem=", hex(tp.elem), " tp.typ=", unsafe.Pointer(tp.typ), "\n")
		traceallocfree.go#L70: 				trace.HeapObjectExists(x, s.typePointersOfUnchecked(x).typ)